home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume89 / unix / rcs.04 < prev    next >
Internet Message Format  |  1989-11-19  |  65KB

  1. Path: xanth!mcnc!uvaarpa!haven!ames!apple!sun-barr!newstop!sun!swap!page
  2. From: page%swap@Sun.COM (Bob Page)
  3. Newsgroups: comp.sources.amiga
  4. Subject: v89i219:  rcs - revision control system, Part04/14
  5. Message-ID: <128095@sun.Eng.Sun.COM>
  6. Date: 19 Nov 89 09:24:34 GMT
  7. Sender: news@sun.Eng.Sun.COM
  8. Lines: 2213
  9. Approved: page@sun.com
  10.  
  11. Submitted-by: rsbx@cbmvax.commodore.com (Raymond S. Brand)
  12. Posting-number: Volume 89, Issue 219
  13. Archive-name: unix/rcs.04
  14.  
  15. # This is a shell archive.
  16. # Remove anything above and including the cut line.
  17. # Then run the rest of the file through 'sh'.
  18. # Unpacked files will be owned by you and have default permissions.
  19. #----cut here-----cut here-----cut here-----cut here----#
  20. #!/bin/sh
  21. # shar: SHell ARchive
  22. # Run the following text through 'sh' to create:
  23. #    diff/util.c
  24. #    diff/dir.h
  25. #    diff/getopt.c
  26. #    diff/ndir.c
  27. #    diff/makefile
  28. #    diff/amiga1.c
  29. #    diff/readme
  30. #    diff/diff.h
  31. #    diff/limits.h
  32. #    diff/regex.h
  33. #    diff/stat.h
  34. #    diff/diff.h.old
  35. # This is archive 4 of a 14-part kit.
  36. # This archive created: Sun Nov 19 01:12:06 1989
  37. if `test ! -d diff`
  38. then
  39.   mkdir diff
  40.   echo "mkdir diff"
  41. fi
  42. echo "extracting diff/util.c"
  43. sed 's/^X//' << \SHAR_EOF > diff/util.c
  44. X/* Support routines for GNU DIFF.
  45. X   Copyright (C) 1988, 1989 Free Software Foundation, Inc.
  46. X
  47. XThis file is part of GNU DIFF.
  48. X
  49. XGNU DIFF is free software; you can redistribute it and/or modify
  50. Xit under the terms of the GNU General Public License as published by
  51. Xthe Free Software Foundation; either version 1, or (at your option)
  52. Xany later version.
  53. X
  54. XGNU DIFF is distributed in the hope that it will be useful,
  55. Xbut WITHOUT ANY WARRANTY; without even the implied warranty of
  56. XMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  57. XGNU General Public License for more details.
  58. X
  59. XYou should have received a copy of the GNU General Public License
  60. Xalong with GNU DIFF; see the file COPYING.  If not, write to
  61. Xthe Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  62. X
  63. X#include "diff.h"
  64. X
  65. X/* Use when a system call returns non-zero status.
  66. X   TEXT should normally be the file name.  */
  67. X
  68. Xvoid
  69. Xperror_with_name (text)
  70. X     char *text;
  71. X{
  72. X  fprintf (stderr, "%s: ", program);
  73. X  perror (text);
  74. X}
  75. X
  76. X/* Use when a system call returns non-zero status and that is fatal.  */
  77. X
  78. Xvoid
  79. Xpfatal_with_name (text)
  80. X     char *text;
  81. X{
  82. X  print_message_queue ();
  83. X  fprintf (stderr, "%s: ", program);
  84. X  perror (text);
  85. X  exit (2);
  86. X}
  87. X
  88. X/* Print an error message from the format-string FORMAT
  89. X   with args ARG1 and ARG2.  */
  90. X
  91. Xvoid
  92. Xerror (format, arg, arg1)
  93. X     char *format;
  94. X     char *arg;
  95. X     char *arg1;
  96. X{
  97. X  fprintf (stderr, "%s: ", program);
  98. X  fprintf (stderr, format, arg, arg1);
  99. X  fprintf (stderr, "\n");
  100. X}
  101. X
  102. X/* Print an error message containing the string TEXT, then exit.  */
  103. X
  104. Xvoid
  105. Xfatal (message)
  106. X     char *message;
  107. X{
  108. X  print_message_queue ();
  109. X  error (message, "");
  110. X  exit (2);
  111. X}
  112. X
  113. X/* Like printf, except if -l in effect then save the message and print later.
  114. X   This is used for things like "binary files differ" and "Only in ...".  */
  115. X
  116. Xvoid
  117. Xmessage (format, arg1, arg2)
  118. X     char *format, *arg1, *arg2;
  119. X{
  120. X  if (paginate_flag)
  121. X    {
  122. X      struct msg *new = (struct msg *) xmalloc (sizeof (struct msg));
  123. X      if (msg_chain_end == 0)
  124. X    msg_chain = msg_chain_end = new;
  125. X      else
  126. X    {
  127. X      msg_chain_end->next = new;
  128. X      msg_chain_end = new;
  129. X    }
  130. X      new->format = format;
  131. X      new->arg1 = concat (arg1, "", "");
  132. X      new->arg2 = concat (arg2, "", "");
  133. X      new->next = 0;
  134. X    }
  135. X  else
  136. X    printf (format, arg1, arg2);
  137. X}
  138. X
  139. X/* Output all the messages that were saved up by calls to `message'.  */
  140. X
  141. Xvoid
  142. Xprint_message_queue ()
  143. X{
  144. X  struct msg *m;
  145. X
  146. X  for (m = msg_chain; m; m = m->next)
  147. X    printf (m->format, m->arg1, m->arg2);
  148. X}
  149. X
  150. X/* Call before outputting the results of comparing files NAME0 and NAME1
  151. X   to set up OUTFILE, the stdio stream for the output to go to.
  152. X
  153. X   Usually, OUTFILE is just stdout.  But when -l was specified
  154. X   we fork off a `pr' and make OUTFILE a pipe to it.
  155. X   `pr' then outputs to our stdout.  */
  156. X
  157. Xvoid
  158. Xsetup_output (name0, name1, depth)
  159. X     char *name0, *name1;
  160. X     int depth;
  161. X{
  162. X  char *name;
  163. X
  164. X  /* Construct the header of this piece of diff.  */
  165. X  name = (char *) xmalloc (strlen (name0) + strlen (name1)
  166. X               + strlen (switch_string) + 15);
  167. X
  168. X  strcpy (name, "diff");
  169. X  strcat (name, switch_string);
  170. X  strcat (name, " ");
  171. X  strcat (name, name0);
  172. X  strcat (name, " ");
  173. X  strcat (name, name1);
  174. X
  175. X  if (paginate_flag)
  176. X    {
  177. X#ifndef AMIGA
  178. X      int pipes[2];
  179. X      int desc;
  180. X
  181. X      /* For a `pr' and make OUTFILE a pipe to it.  */
  182. X      pipe (pipes);
  183. X
  184. X      fflush (stdout);
  185. X
  186. X      desc = vfork ();
  187. X      if (desc < 0)
  188. X    pfatal_with_name ("vfork");
  189. X
  190. X      if (desc == 0)
  191. X    {
  192. X      close (pipes[1]);
  193. X      close (fileno (stdin));
  194. X      if (dup2 (pipes[0], fileno (stdin)) < 0)
  195. X        pfatal_with_name ("dup2");
  196. X      close (pipes[0]);
  197. X
  198. X      if (execl (PR_FILE_NAME, PR_FILE_NAME, "-f", "-h", name, 0) < 0)
  199. X        pfatal_with_name (PR_FILE_NAME);
  200. X    }
  201. X      else
  202. X    {
  203. X      close (pipes[0]);
  204. X      outfile = fdopen (pipes[1], "w");
  205. X    }
  206. X#endif
  207. X    }
  208. X  else
  209. X    {
  210. X
  211. X      /* If -l was not specified, output the diff straight to `stdout'.  */
  212. X
  213. X      outfile = stdout;
  214. X
  215. X      /* If handling multiple files (because scanning a directory),
  216. X     print which files the following output is about.  */
  217. X      if (depth > 0)
  218. X    printf ("%s\n", name);
  219. X    }
  220. X
  221. X  free (name);
  222. X}
  223. X
  224. X/* Call after the end of output of diffs for one file.
  225. X   Close OUTFILE and get rid of the `pr' subfork.  */
  226. X
  227. Xvoid
  228. Xfinish_output ()
  229. X{
  230. X  if (outfile != stdout)
  231. X    {
  232. X      fclose (outfile);
  233. X#ifndef AMIGA
  234. X      wait (0);
  235. X#endif
  236. X    }
  237. X}
  238. X
  239. X/* Compare two lines (typically one from each input file)
  240. X   according to the command line options.
  241. X   Each line is described by a `struct line_def'.
  242. X   Return 1 if the lines differ, like `bcmp'.  */
  243. X
  244. Xint
  245. Xline_cmp (s1, s2)
  246. X     struct line_def *s1, *s2;
  247. X{
  248. X  register char *t1, *t2;
  249. X  register char end_char = line_end_char;
  250. X  int savechar;
  251. X
  252. X  /* Check first for exact identity.
  253. X     If that is true, return 0 immediately.
  254. X     This detects the common case of exact identity
  255. X     faster than complete comparison would.  */
  256. X
  257. X  t1 = s1->text;
  258. X  t2 = s2->text;
  259. X
  260. X  /* Alter the character following line 1 so it doesn't
  261. X     match that following line 2.  */
  262. X  savechar = s1->text[s1->length];
  263. X  s1->text[s1->length] = s2->text[s2->length] + 1;
  264. X
  265. X  /* Now find the first mismatch; this won't go past the
  266. X     character we just changed.  */
  267. X  while (*t1++ == *t2++);
  268. X
  269. X  /* Undo the alteration.  */
  270. X  s1->text[s1->length] = savechar;
  271. X
  272. X  /* If the comparison stopped at the alteration,
  273. X     the two lines are identical.  */
  274. X  if (t1 == s1->text + s1->length + 1)
  275. X    return 0;
  276. X
  277. X  /* Not exactly identical, but perhaps they match anyway
  278. X     when case or whitespace is ignored.  */
  279. X
  280. X  if (ignore_case_flag || ignore_space_change_flag || ignore_all_space_flag)
  281. X    {
  282. X      t1 = s1->text;
  283. X      t2 = s2->text;
  284. X
  285. X      while (1)
  286. X    {
  287. X      register char c1 = *t1++;
  288. X      register char c2 = *t2++;
  289. X
  290. X      /* Ignore horizontal whitespace if -b or -w is specified.  */
  291. X
  292. X      if (ignore_all_space_flag)
  293. X        {
  294. X          /* For -w, just skip past any spaces or tabs.  */
  295. X          while (c1 == ' ' || c1 == '\t') c1 = *t1++;
  296. X          while (c2 == ' ' || c2 == '\t') c2 = *t2++;
  297. X        }
  298. X      else if (ignore_space_change_flag)
  299. X        {
  300. X          /* For -b, advance past any sequence of whitespace in line 1
  301. X         and consider it just one Space, or nothing at all
  302. X         if it is at the end of the line.  */
  303. X          if (c1 == ' ' || c1 == '\t')
  304. X        {
  305. X          while (1)
  306. X            {
  307. X              c1 = *t1++;
  308. X              if (c1 == end_char)
  309. X            break;
  310. X              if (c1 != ' ' && c1 != '\t')
  311. X            {
  312. X              --t1;
  313. X              c1 = ' ';
  314. X              break;
  315. X            }
  316. X            }
  317. X        }
  318. X
  319. X          /* Likewise for line 2.  */
  320. X          if (c2 == ' ' || c2 == '\t')
  321. X        {
  322. X          while (1)
  323. X            {
  324. X              c2 = *t2++;
  325. X              if (c2 == end_char)
  326. X            break;
  327. X              if (c2 != ' ' && c2 != '\t')
  328. X            {
  329. X              --t2;
  330. X              c2 = ' ';
  331. X              break;
  332. X            }
  333. X            }
  334. X        }
  335. X        }
  336. X
  337. X      /* Upcase all letters if -i is specified.  */
  338. X
  339. X      if (ignore_case_flag)
  340. X        {
  341. X          if (islower (c1))
  342. X        c1 = toupper (c1);
  343. X          if (islower (c2))
  344. X        c2 = toupper (c2);
  345. X        }
  346. X
  347. X      if (c1 != c2)
  348. X        break;
  349. X      if (c1 == end_char)
  350. X        return 0;
  351. X    }
  352. X    }
  353. X
  354. X  return (1);
  355. X}
  356. X
  357. X/* Find the consecutive changes at the start of the script START.
  358. X   Return the last link before the first gap.  */
  359. X
  360. Xstruct change *
  361. Xfind_change (start)
  362. X     struct change *start;
  363. X{
  364. X  return start;
  365. X}
  366. X
  367. Xstruct change *
  368. Xfind_reverse_change (start)
  369. X     struct change *start;
  370. X{
  371. X  return start;
  372. X}
  373. X
  374. X/* Divide SCRIPT into pieces by calling HUNKFUN and
  375. X   print each piece with PRINTFUN.
  376. X   Both functions take one arg, an edit script.
  377. X
  378. X   HUNKFUN is called with the tail of the script
  379. X   and returns the last link that belongs together with the start
  380. X   of the tail.
  381. X
  382. X   PRINTFUN takes a subscript which belongs together (with a null
  383. X   link at the end) and prints it.  */
  384. X
  385. Xvoid
  386. Xprint_script (script, hunkfun, printfun)
  387. X     struct change *script;
  388. X     struct change * (*hunkfun) ();
  389. X     void (*printfun) ();
  390. X{
  391. X  struct change *next = script;
  392. X
  393. X  while (next)
  394. X    {
  395. X      struct change *this, *end;
  396. X
  397. X      /* Find a set of changes that belong together.  */
  398. X      this = next;
  399. X      end = (*hunkfun) (next);
  400. X
  401. X      /* Disconnect them from the rest of the changes,
  402. X     making them a hunk, and remember the rest for next iteration.  */
  403. X      next = end->link;
  404. X      end->link = NULL;
  405. X#ifdef MYDEBUG
  406. X      debug_script (this);
  407. X#endif
  408. X
  409. X      /* Print this hunk.  */
  410. X      (*printfun) (this);
  411. X
  412. X      /* Reconnect the script so it will all be freed properly.  */
  413. X      end->link = next;
  414. X    }
  415. X}
  416. X
  417. X/* Print the text of a single line LINE,
  418. X   flagging it with the characters in LINE_FLAG (which say whether
  419. X   the line is inserted, deleted, changed, etc.).  */
  420. X
  421. Xvoid
  422. Xprint_1_line (line_flag, line)
  423. X     char *line_flag;
  424. X     struct line_def *line;
  425. X{
  426. X  fprintf (outfile, "%s", line_flag);
  427. X
  428. X  /* If -T was specified, use a Tab between the line-flag and the text.
  429. X     Otherwise use a Space (as Unix diff does).
  430. X     Print neither space nor tab if line-flags are empty.  */
  431. X
  432. X  if (line_flag[0] != 0)
  433. X    {
  434. X      if (tab_align_flag)
  435. X    fprintf (outfile, "\t");
  436. X      else
  437. X    fprintf (outfile, " ");
  438. X    }
  439. X
  440. X  /* Now output the contents of the line.
  441. X     If -t was specified, expand tabs to spaces.
  442. X     Otherwise output verbatim.  */
  443. X
  444. X  if (tab_expand_flag)
  445. X    {
  446. X      register int column = 0;
  447. X      register int i;
  448. X      for (i = 0; i <= line->length; i++)
  449. X    {
  450. X      register char c = line->text[i];
  451. X      if (c == '\t')
  452. X        {
  453. X          putc (' ', outfile);
  454. X          column++;
  455. X          while (column & 7)
  456. X        {
  457. X          putc (' ', outfile);
  458. X          column++;
  459. X        }
  460. X        }
  461. X      else if (c == '\b')
  462. X        {
  463. X          column--;
  464. X          putc (c, outfile);
  465. X        }
  466. X      else
  467. X        {
  468. X          column++;
  469. X          putc (c, outfile);
  470. X        }
  471. X    }
  472. X    }
  473. X  else
  474. X    fwrite (line->text, sizeof (char), line->length + 1, outfile);
  475. X
  476. X  if (line_end_char != '\n')
  477. X    putc ('\n', outfile);
  478. X}
  479. X
  480. Xchange_letter (inserts, deletes)
  481. X     int inserts, deletes;
  482. X{
  483. X  if (!inserts)
  484. X    return 'd';
  485. X  else if (!deletes)
  486. X    return 'a';
  487. X  else
  488. X    return 'c';
  489. X}
  490. X
  491. X/* Translate an internal line number (an index into diff's table of lines)
  492. X   into an actual line number in the input file.
  493. X   The internal line number is LNUM.  FILE points to the data on the file.
  494. X
  495. X   Internal line numbers count from 0 within the current chunk.
  496. X   Actual line numbers count from 1 within the entire file;
  497. X   in addition, they include lines ignored for comparison purposes.
  498. X
  499. X   The `ltran' feature is no longer in use.  */
  500. X
  501. Xint
  502. Xtranslate_line_number (file, lnum)
  503. X     struct file_data *file;
  504. X     int lnum;
  505. X{
  506. X  return lnum + 1;
  507. X}
  508. X
  509. Xvoid
  510. Xtranslate_range (file, a, b, aptr, bptr)
  511. X     struct file_data *file;
  512. X     int a, b;
  513. X     int *aptr, *bptr;
  514. X{
  515. X  *aptr = translate_line_number (file, a - 1) + 1;
  516. X  *bptr = translate_line_number (file, b + 1) - 1;
  517. X}
  518. X
  519. X/* Print a pair of line numbers with SEPCHAR, translated for file FILE.
  520. X   If the two numbers are identical, print just one number.
  521. X
  522. X   Args A and B are internal line numbers.
  523. X   We print the translated (real) line numbers.  */
  524. X
  525. Xvoid
  526. Xprint_number_range (sepchar, file, a, b)
  527. X     char sepchar;
  528. X     struct file_data *file;
  529. X     int a, b;
  530. X{
  531. X  int trans_a, trans_b;
  532. X  translate_range (file, a, b, &trans_a, &trans_b);
  533. X
  534. X  /* Note: we can have B < A in the case of a range of no lines.
  535. X     In this case, we should print the line number before the range,
  536. X     which is B.  */
  537. X  if (trans_b > trans_a)
  538. X    fprintf (outfile, "%d%c%d", trans_a, sepchar, trans_b);
  539. X  else
  540. X    fprintf (outfile, "%d", trans_b);
  541. X}
  542. X
  543. X/* Look at a hunk of edit script and report the range of lines in each file
  544. X   that it applies to.  HUNK is the start of the hunk, which is a chain
  545. X   of `struct change'.  The first and last line numbers of file 0 are stored in
  546. X   *FIRST0 and *LAST0, and likewise for file 1 in *FIRST1 and *LAST1. 
  547. X   Note that these are internal line numbers that count from 0.
  548. X
  549. X   If no lines from file 0 are deleted, then FIRST0 is LAST0+1.
  550. X
  551. X   Also set *DELETES nonzero if any lines of file 0 are deleted
  552. X   and set *INSERTS nonzero if any lines of file 1 are inserted.
  553. X   If only ignorable lines are inserted or deleted, both are
  554. X   set to 0.  */
  555. X
  556. Xvoid
  557. Xanalyze_hunk (hunk, first0, last0, first1, last1, deletes, inserts)
  558. X     struct change *hunk;
  559. X     int *first0, *last0, *first1, *last1;
  560. X     int *deletes, *inserts;
  561. X{
  562. X  int f0, l0, f1, l1, show_from, show_to;
  563. X  int i;
  564. X  int nontrivial = !(ignore_blank_lines_flag || ignore_regexp);
  565. X  struct change *next;
  566. X
  567. X  show_from = show_to = 0;
  568. X
  569. X  f0 = hunk->line0;
  570. X  f1 = hunk->line1;
  571. X
  572. X  for (next = hunk; next; next = next->link)
  573. X    {
  574. X      l0 = next->line0 + next->deleted - 1;
  575. X      l1 = next->line1 + next->inserted - 1;
  576. X      show_from += next->deleted;
  577. X      show_to += next->inserted;
  578. X
  579. X      for (i = next->line0; i <= l0 && ! nontrivial; i++)
  580. X    if ((!ignore_blank_lines_flag || files[0].linbuf[i].length > 1)
  581. X        && (!ignore_regexp
  582. X        || 0 > re_search (&ignore_regexp_compiled,
  583. X                  files[0].linbuf[i].text,
  584. X                  files[0].linbuf[i].length, 0,
  585. X                  files[0].linbuf[i].length, 0)))
  586. X      nontrivial = 1;
  587. X
  588. X      for (i = next->line1; i <= l1 && ! nontrivial; i++)
  589. X    if ((!ignore_blank_lines_flag || files[1].linbuf[i].length > 1)
  590. X        && (!ignore_regexp
  591. X        || 0 > re_search (&ignore_regexp_compiled,
  592. X                  files[1].linbuf[i].text,
  593. X                  files[1].linbuf[i].length, 0,
  594. X                  files[1].linbuf[i].length, 0)))
  595. X      nontrivial = 1;
  596. X    }
  597. X
  598. X  *first0 = f0;
  599. X  *last0 = l0;
  600. X  *first1 = f1;
  601. X  *last1 = l1;
  602. X
  603. X  /* If all inserted or deleted lines are ignorable,
  604. X     tell the caller to ignore this hunk.  */
  605. X
  606. X  if (!nontrivial)
  607. X    show_from = show_to = 0;
  608. X
  609. X  *deletes = show_from;
  610. X  *inserts = show_to;
  611. X}
  612. X
  613. X/* malloc a block of memory, with fatal error message if we can't do it. */
  614. X
  615. Xvoid *
  616. Xxmalloc (size)
  617. X     unsigned size;
  618. X{
  619. X  register void *value;
  620. X
  621. X  if (!size) size = 4;
  622. X
  623. X  if (!(value = (void *) malloc (size)))
  624. X    fatal ("virtual memory exhausted");
  625. X  return value;
  626. X}
  627. X
  628. X/* realloc a block of memory, with fatal error message if we can't do it. */
  629. X
  630. Xvoid *
  631. Xxrealloc (old, size)
  632. X     void *old;
  633. X     unsigned int size;
  634. X{
  635. X  register void *value;
  636. X
  637. X  if (!size) size = 4;
  638. X
  639. X  if (!(value = (void *) realloc (old, size)))
  640. X    fatal ("virtual memory exhausted");
  641. X  return value;
  642. X}
  643. X
  644. Xvoid *
  645. Xxcalloc (nitems, size)
  646. X     int nitems, size;
  647. X{
  648. X  void *value;
  649. X
  650. X  if (!size) size = 4;
  651. X
  652. X  if (!(value = (void *) calloc (nitems, size)))
  653. X    fatal ("virtual memory exhausted");
  654. X  return value;
  655. X}
  656. X
  657. X/* Concatenate three strings, returning a newly malloc'd string.  */
  658. X
  659. Xchar *
  660. Xconcat (s1, s2, s3)
  661. X     char *s1, *s2, *s3;
  662. X{
  663. X  int len = strlen (s1) + strlen (s2) + strlen (s3);
  664. X  char *new = (char *) xmalloc (len + 1);
  665. X  strcpy (new, s1);
  666. X  strcat (new, s2);
  667. X  strcat (new, s3);
  668. X  return new;
  669. X}
  670. X
  671. Xdebug_script (sp)
  672. X     struct change *sp;
  673. X{
  674. X  fflush (stdout);
  675. X  for (; sp; sp = sp->link)
  676. X    fprintf (stderr, "%3d %3d delete %d insert %d\n",
  677. X         sp->line0, sp->line1, sp->deleted, sp->inserted);
  678. X  fflush (stderr);
  679. X  return(0);
  680. X}
  681. SHAR_EOF
  682. echo "extracting diff/dir.h"
  683. sed 's/^X//' << \SHAR_EOF > diff/dir.h
  684. X#ifndef DIR_H
  685. X#define DIR_H
  686. X
  687. X#ifndef    EXEC_TYPES_H
  688. X#include "exec/types.h"
  689. X#endif
  690. X
  691. X#ifndef    LIBRARIES_DOS_H
  692. X#include "libraries/dos.h"
  693. X#endif
  694. X
  695. X#ifndef    LIBRARIES_DOSEXTENS_H
  696. X#include "libraries/dosextens.h"
  697. X#endif
  698. X/*
  699. X * MAXNAMELEN is the maximum length a file name can be. The direct structure
  700. X * is lifted form 4BSD, and has not been changed so that code which uses
  701. X * it will be compatable with 4BSD code. d_ino and d_reclen are unused,
  702. X * and will probably be set to some non-zero value.
  703. X */
  704. X#define    MAXNAMLEN    31        /* AmigaDOS file max length */
  705. X
  706. Xstruct    direct {
  707. X    ULONG    d_ino ;            /* unused - there for compatability */
  708. X    USHORT    d_reclen ;        /* ditto */
  709. X    USHORT    d_namlen ;        /* length of string in d_name */
  710. X    char    d_name[MAXNAMLEN + 1] ;    /* name must be no longer than this */
  711. X};
  712. X/*
  713. X * The DIRSIZ macro gives the minimum record length which will hold
  714. X * the directory entry.  This requires the amount of space in struct direct
  715. X * without the d_name field, plus enough space for the name with a terminating
  716. X * null byte (dp->d_namlen+1), rounded up to a 4 byte boundary.
  717. X */
  718. X
  719. X#undef DIRSIZ
  720. X#define DIRSIZ(dp) \
  721. X    ((sizeof(struct direct) - (MAXNAMLEN+1)) + (((dp) -> d_namlen+1 + 3) &~ 3))
  722. X/*
  723. X * The DIR structure holds the things that AmigaDOS needs to know about
  724. X * a file to keep track of where it is and what it's doing.
  725. X */
  726. X
  727. Xtypedef struct {
  728. X    struct FileInfoBlock    d_info ,    /* Default info block */
  729. X                d_seek ;    /* Info block for seeks */
  730. X    struct FileLock        *d_lock ;    /* Lock on directory */
  731. X    } DIR ;
  732. X    
  733. Xextern    DIR *opendir(char *) ;
  734. Xextern    struct direct *readdir(DIR *) ;
  735. Xextern    long telldir(DIR *) ;
  736. Xextern    void seekdir(DIR *, long) ;
  737. Xextern    void rewinddir(DIR *) ;
  738. Xextern    void closedir(DIR *) ;
  739. X#endif    DIR_H
  740. SHAR_EOF
  741. echo "extracting diff/getopt.c"
  742. sed 's/^X//' << \SHAR_EOF > diff/getopt.c
  743. X/*
  744. X * From std-unix@ut-sally.UUCP (Moderator, John Quarterman) Sun Nov  3 14:34:15 1985
  745. X * Relay-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site gatech.CSNET
  746. X * Posting-Version: version B 2.10.2 9/18/84; site ut-sally.UUCP
  747. X * Path: gatech!akgua!mhuxv!mhuxt!mhuxr!ulysses!allegra!mit-eddie!genrad!panda!talcott!harvard!seismo!ut-sally!std-unix
  748. X * From: std-unix@ut-sally.UUCP (Moderator, John Quarterman)
  749. X * Newsgroups: mod.std.unix
  750. X * Subject: public domain AT&T getopt source
  751. X * Message-ID: <3352@ut-sally.UUCP>
  752. X * Date: 3 Nov 85 19:34:15 GMT
  753. X * Date-Received: 4 Nov 85 12:25:09 GMT
  754. X * Organization: IEEE/P1003 Portable Operating System Environment Committee
  755. X * Lines: 91
  756. X * Approved: jsq@ut-sally.UUCP
  757. X * 
  758. X * Here's something you've all been waiting for:  the AT&T public domain
  759. X * source for getopt(3).  It is the code which was given out at the 1985
  760. X * UNIFORUM conference in Dallas.  I obtained it by electronic mail
  761. X * directly from AT&T.  The people there assure me that it is indeed
  762. X * in the public domain.
  763. X * 
  764. X * There is no manual page.  That is because the one they gave out at
  765. X * UNIFORUM was slightly different from the current System V Release 2
  766. X * manual page.  The difference apparently involved a note about the
  767. X * famous rules 5 and 6, recommending using white space between an option
  768. X * and its first argument, and not grouping options that have arguments.
  769. X * Getopt itself is currently lenient about both of these things White
  770. X * space is allowed, but not mandatory, and the last option in a group can
  771. X * have an argument.  That particular version of the man page evidently
  772. X * has no official existence, and my source at AT&T did not send a copy.
  773. X * The current SVR2 man page reflects the actual behavor of this getopt.
  774. X * However, I am not about to post a copy of anything licensed by AT&T.
  775. X * 
  776. X * I will submit this source to Berkeley as a bug fix.
  777. X * 
  778. X * I, personally, make no claims or guarantees of any kind about the
  779. X * following source.  I did compile it to get some confidence that
  780. X * it arrived whole, but beyond that you're on your own.
  781. X * 
  782. X */
  783. X
  784. X/*LINTLIBRARY*/
  785. X
  786. X#ifndef NULL
  787. X#define NULL    0
  788. X#endif
  789. X
  790. X#ifndef EOF
  791. X#define EOF    (-1)
  792. X#endif
  793. X
  794. X#define ERR(s, c)    if(opterr){\
  795. X    extern int strlen(), write();\
  796. X    char errbuf[2];\
  797. X    errbuf[0] = c; errbuf[1] = '\n';\
  798. X    (void) write(2, argv[0], (unsigned)strlen(argv[0]));\
  799. X    (void) write(2, s, (unsigned)strlen(s));\
  800. X    (void) write(2, errbuf, (unsigned)2);}
  801. X
  802. Xextern int strcmp();
  803. Xextern char *strchr();
  804. X
  805. Xint    opterr = 1;
  806. Xint    optind = 1;
  807. Xint    optopt;
  808. Xchar    *optarg;
  809. X
  810. Xint
  811. Xgetopt(argc, argv, opts)
  812. Xint    argc;
  813. Xchar    **argv, *opts;
  814. X{
  815. X    static int sp = 1;
  816. X    register int c;
  817. X    register char *cp;
  818. X
  819. X    if(sp == 1)
  820. X        if(optind >= argc ||
  821. X           argv[optind][0] != '-' || argv[optind][1] == '\0')
  822. X            return(EOF);
  823. X        else if(strcmp(argv[optind], "--") == NULL) {
  824. X            optind++;
  825. X            return(EOF);
  826. X        }
  827. X    optopt = c = argv[optind][sp];
  828. X    if(c == ':' || (cp=strchr(opts, c)) == NULL) {
  829. X        ERR("illegal option: ", c);
  830. X        if(argv[optind][++sp] == '\0') {
  831. X            optind++;
  832. X            sp = 1;
  833. X        }
  834. X        return('?');
  835. X    }
  836. X    if(*++cp == ':') {
  837. X        if(argv[optind][sp+1] != '\0' && argv[optind][sp+1] != '-')
  838. X            optarg = &argv[optind++][sp+1];
  839. X        else if(++optind >= argc || argv[optind][0] == '-') {
  840. X            ERR("option requires an argument: ", c);
  841. X            sp = 1;
  842. X            return('?');
  843. X        } else
  844. X            optarg = argv[optind++];
  845. X        sp = 1;
  846. X    } else {
  847. X        if(argv[optind][++sp] == '\0') {
  848. X            sp = 1;
  849. X            optind++;
  850. X        }
  851. X        optarg = NULL;
  852. X    }
  853. X    return(c);
  854. X}
  855. SHAR_EOF
  856. echo "extracting diff/ndir.c"
  857. sed 's/^X//' << \SHAR_EOF > diff/ndir.c
  858. X/*
  859. X * ndir - routines to simulate the 4BSD new directory code for AmigaDOS.
  860. X */
  861. X#include "dir.h"
  862. X
  863. XDIR *
  864. Xopendir(dirname) char *dirname; {
  865. X    register DIR    *my_dir, *AllocMem(int, int) ;
  866. X    struct FileLock    *Lock(char *, int), *CurrentDir(struct FileLock *) ;
  867. X
  868. X    if ((my_dir = AllocMem(sizeof(DIR), 0)) == NULL) return NULL ;
  869. X
  870. X
  871. X    if (((my_dir -> d_lock = Lock(dirname, ACCESS_READ)) == NULL)
  872. X    /* If we can't examine it */
  873. X    ||  !Examine(my_dir -> d_lock, &(my_dir -> d_info))
  874. X    /* Or it's not a directory */
  875. X    ||  (my_dir -> d_info . fib_DirEntryType < 0)) {
  876. X        FreeMem(my_dir, sizeof(DIR)) ;
  877. X        return NULL ;
  878. X        }
  879. X    return my_dir ;
  880. X    }
  881. X
  882. Xstruct direct *
  883. Xreaddir(my_dir) DIR *my_dir; {
  884. X    static struct direct    result ;
  885. X
  886. X    if (!ExNext(my_dir -> d_lock, &(my_dir -> d_info))) return NULL ;
  887. X
  888. X    result . d_reclen = result . d_ino = 1 ;    /* Not NULL! */
  889. X    (void) strcpy(result . d_name, my_dir -> d_info . fib_FileName) ;
  890. X    result . d_namlen = strlen(result . d_name) ;
  891. X    return &result ;
  892. X    }
  893. X
  894. Xvoid
  895. Xclosedir(my_dir) DIR *my_dir; {
  896. X
  897. X    UnLock(my_dir -> d_lock) ;
  898. X    FreeMem(my_dir, sizeof(DIR)) ;
  899. X    }
  900. X/*
  901. X * telldir and seekdir don't work quite right. The problem is that you have
  902. X * to save more than a long's worth of stuff to indicate position, and it's
  903. X * socially unacceptable to alloc stuff that you don't free later under
  904. X * AmigaDOS. So we fake it - you get one level of seek, and dat's all.
  905. X * As of now, these things are untested.
  906. X */
  907. X#define DIR_SEEK_RETURN        ((long) 1)    /* Not 0! */
  908. Xlong
  909. Xtelldir(my_dir) DIR *my_dir; {
  910. X
  911. X    my_dir -> d_seek = my_dir -> d_info ;
  912. X    return (long) DIR_SEEK_RETURN ;
  913. X    }
  914. X
  915. Xvoid
  916. Xseekdir(my_dir, where) DIR *my_dir; long where; {
  917. X
  918. X    if (where == DIR_SEEK_RETURN)
  919. X        my_dir -> d_info = my_dir -> d_seek ;
  920. X    else    /* Makes the next readdir fail */
  921. X        setmem((char *) my_dir, sizeof(DIR), 0) ;
  922. X    }
  923. X
  924. Xvoid
  925. Xrewinddir(my_dir) DIR *my_dir; {
  926. X
  927. X    if (!Examine(my_dir -> d_lock, &(my_dir -> d_info)))
  928. X        setmem((char *) my_dir, sizeof(DIR), 0) ;
  929. X    }
  930. X#ifdef    TEST
  931. X/*
  932. X * Simple code to list the files in the argument directory,
  933. X *    lifted straight from the man page.
  934. X */
  935. X#include <stdio.h>
  936. Xvoid
  937. Xmain(argc, argv) int argc; char **argv; {
  938. X    register DIR        *dirp ;
  939. X    register struct direct    *dp ;
  940. X    register char        *name ;
  941. X
  942. X    if (argc < 2) name = "" ;
  943. X    else name = argv[1] ;
  944. X
  945. X    if ((dirp = opendir(name)) == NULL) {
  946. X        fprintf(stderr, "Bogus! Can't opendir %s\n", name) ;
  947. X        exit(1) ;
  948. X        }
  949. X
  950. X    for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp))
  951. X        printf("%s ", dp -> d_name) ;
  952. X    closedir(dirp);
  953. X    putchar('\n') ;
  954. X    }
  955. X#endif    TEST
  956. X
  957. SHAR_EOF
  958. echo "extracting diff/makefile"
  959. sed 's/^X//' << \SHAR_EOF > diff/makefile
  960. X#$Header$
  961. X#
  962. X#
  963. X#
  964. X#
  965. X#
  966. X.SILENT:
  967. X
  968. XCC1=lc1
  969. XCC2=go
  970. XCC3=lc2
  971. XC1FLAGS    = -j85i -d3
  972. XC2FLAGS    =
  973. XC3FLAGS    =
  974. X
  975. X#.c.o:
  976. X#    $(CC1) -. $(C1FLAGS) $(CFLAGS) -oQUAD: $*
  977. X#    $(CC2) -. $(C2FLAGS) QUAD:$*.q
  978. X#    $(CC3) -. $(C3FLAGS) -o$*.o QUAD:$*.q
  979. X#
  980. X.c.o:
  981. X    $(CC1) -. $(C1FLAGS) $(CFLAGS) -oQUAD: $*
  982. X    $(CC3) -. $(C3FLAGS) -o$*.o QUAD:$*.q
  983. X#
  984. X#
  985. X
  986. XRCSDIR    = RCS:
  987. X
  988. XDIFF    = ${RCSDIR}diff
  989. XDIFF3    = ${RCSDIR}diff3
  990. XED    = ${RCSDIR}ked
  991. X
  992. XOS    = -dAMIGA
  993. XARGS    = -dSTDARGS
  994. X
  995. XSIGNAL_TYPE = void
  996. X
  997. XLOCKING    = 1
  998. X
  999. XLDFLAGS    = quiet batch nodebug
  1000. XLDLIBS    = LIB:rsbx.lib LIB:lc.lib LIB:amiga.lib
  1001. X
  1002. XDEFINES    = $(OS) $(ARGS) -dSIGNAL_TYPE=$(SIGNAL_TYPE) -dSTRICT_LOCKING=$(LOCKING) -dED="$(ED)" -dDIFF="$(DIFF)" -dDIFF3="$(DIFF3)" -dCO="${RCSDIR}co" -dMERGE="${RCSDIR}merge"
  1003. XCFLAGS    = $(DEFINES)
  1004. X
  1005. XTARGETS = diff diff3
  1006. X
  1007. X
  1008. X
  1009. X
  1010. Xall:    $(TARGETS)
  1011. X
  1012. X
  1013. Xinstall:
  1014. X    copy diff  to RCS:
  1015. X    copy diff3 to RCS:
  1016. X
  1017. X
  1018. Xclean:
  1019. X    -delete \#?.o
  1020. X    -delete $(TARGETS)
  1021. X    -delete \#?.tmp
  1022. X
  1023. X
  1024. XDIFFOBJ    = analyze.o context.o diff.o ed.o io.o normal.o regex.o util.o getopt.o dir.o ndir.o amiga1.o
  1025. XDIFFSRC = analyze.c context.c diff.c ed.c io.c normal.c regex.c util.c getopt.c dir.c ndir.c amiga1.c
  1026. Xdiff:    $(DIFFOBJ) $(LDLIBS)
  1027. X    -delete $@
  1028. X    ${LD} $(LDFLAGS) TO $@.tmp FROM LIB:xc.o $(DIFFOBJ) LIB $(LDLIBS)
  1029. X    rename $@.tmp $@
  1030. X
  1031. X
  1032. XDIFF3OBJ = diff3.o getopt.o
  1033. XDIFF3SRC = diff3.c getopt.c
  1034. Xdiff3:    $(DIFF3OBJ) $(LDLIBS)
  1035. X    -delete $@
  1036. X    ${LD} $(LDFLAGS) TO $@.tmp FROM LIB:xc.o $(DIFF3OBJ) LIB $(LDLIBS)
  1037. X    rename $@.tmp $@
  1038. X
  1039. X
  1040. XSOURCE=    analyze.c context.c diff.c diff3.c dir.c ed.c getopt.c io.c ndir.c normal.c regex.c util.c \
  1041. X    amiga1.c
  1042. X
  1043. X
  1044. XHFILES=    diff.h dir.h limits.h regex.h stat.h
  1045. X
  1046. Xdepend:    ${SOURCE} ${HFILES}
  1047. X    (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \
  1048. X     cc -Em ${CFLAGS} ${SOURCE} | sed 's/\.\///; /\//d' \
  1049. X    ) >Makefile.new
  1050. X    cp Makefile Makefile.bak
  1051. X    cp Makefile.new Makefile
  1052. X    rm -f Makefile.new
  1053. X
  1054. X
  1055. X# DO NOT DELETE THIS LINE - 
  1056. Xanalyze.o: analyze.c
  1057. Xanalyze.o: regex.h
  1058. Xanalyze.o: diff.h
  1059. Xcontext.o: context.c
  1060. Xcontext.o: diff.h
  1061. Xcontext.o: regex.h
  1062. Xdiff.o: diff.c
  1063. Xdiff.o: regex.h
  1064. Xdiff.o: diff.h
  1065. Xdiff3.o: diff3.c
  1066. Xdir.o: dir.c
  1067. Xdir.o: diff.h
  1068. Xdir.o: regex.h
  1069. Xed.o: ed.c
  1070. Xed.o: diff.h
  1071. Xed.o: regex.h
  1072. Xgetopt.o: getopt.c
  1073. Xio.o: io.c
  1074. Xio.o: diff.h
  1075. Xio.o: regex.h
  1076. Xndir.o: ndir.c
  1077. Xndir.o: dir.h
  1078. Xnormal.o: normal.c
  1079. Xnormal.o: diff.h
  1080. Xnormal.o: regex.h
  1081. Xregex.o: regex.c
  1082. Xregex.o: regex.h
  1083. Xutil.o: util.c
  1084. Xutil.o: diff.h
  1085. Xutil.o: regex.h
  1086. Xamiga1.o: amiga1.c
  1087. Xamiga1.o: stat.h
  1088. SHAR_EOF
  1089. echo "extracting diff/amiga1.c"
  1090. sed 's/^X//' << \SHAR_EOF > diff/amiga1.c
  1091. X/*
  1092. X**  Glue functions for the RCS system needed for the Amiga
  1093. X*/
  1094. X
  1095. X#include <stdio.h>
  1096. X#include <errno.h>
  1097. X#include <proto/exec.h>
  1098. X#include <exec/tasks.h>
  1099. X#include <ios1.h>
  1100. X#include <dos.h>
  1101. X#include <fcntl.h>
  1102. X#include <exec/exec.h>
  1103. X#include <libraries/dosextens.h>
  1104. X#include "stat.h"
  1105. X#include <stdarg.h>
  1106. X
  1107. X
  1108. X
  1109. Xumask(mode)
  1110. X{
  1111. X    return mode;
  1112. X}
  1113. X
  1114. X/*
  1115. X** This function is used in place of the lattice library function of
  1116. X** the same name.  It handles all modes, not just "rwed".
  1117. X*/
  1118. Xchmod(name,mode)
  1119. Xchar    *name;
  1120. Xint    mode;
  1121. X{
  1122. X    long    amigamode;
  1123. X    int    success;
  1124. X
  1125. X    amigamode = mode;
  1126. X    success = SetProtection(name,amigamode);
  1127. X    if (success)
  1128. X        return(0);
  1129. X    errno = ENOENT;
  1130. X    return(-1);
  1131. X}
  1132. X
  1133. Xint stat(name,buf)
  1134. Xchar    *name;
  1135. Xstruct stat *buf;
  1136. X{
  1137. X    long l;
  1138. X    struct FileInfoBlock *fp,*malloc();
  1139. X
  1140. X    if ((l=Lock(name, ACCESS_READ)) == 0)
  1141. X        return(-1);
  1142. X    fp = malloc(sizeof(struct FileInfoBlock));
  1143. X    Examine(l, fp);
  1144. X    buf->st_attr = fp->fib_Protection;
  1145. X    buf->st_size = fp->fib_Size;
  1146. X    buf->st_type = fp->fib_DirEntryType;
  1147. X    UnLock(l);
  1148. X    free(fp);
  1149. X    buf->st_mtime = getft(name);
  1150. X    return 0;
  1151. X}
  1152. X
  1153. Xisatty(fd)
  1154. Xint        fd;
  1155. X{
  1156. X    long IsInteractive();
  1157. X    struct UFB    *ufb;
  1158. X
  1159. X    ufb = chkufb(fd);
  1160. X    if (ufb == NULL)
  1161. X        return(-1);
  1162. X    return(IsInteractive(ufb->ufbfh) != 0);
  1163. X}
  1164. SHAR_EOF
  1165. echo "extracting diff/readme"
  1166. sed 's/^X//' << \SHAR_EOF > diff/readme
  1167. XThis directory contains the GNU DIFF and DIFF3 utilities, version 1.10.
  1168. XSee file COPYING for copying conditions.  To compile and install on
  1169. Xsystem V, you must edit the makefile according to comments therein.
  1170. X
  1171. XReport bugs to bug-gnu-utils@prep.ai.mit.edu
  1172. XThis version of diff provides all the features of BSD's diff.
  1173. XIt has these additional features:
  1174. X
  1175. X   -a    Always treat files as text and compare them line-by-line,
  1176. X    even if they do not appear to be ASCII.
  1177. X
  1178. X   -B    ignore changes that just insert or delete blank lines.
  1179. X
  1180. X   -C #
  1181. X    request -c format and specify number of context lines.
  1182. X
  1183. X   -F regexp
  1184. X    in context format, for each unit of differences, show some of
  1185. X    the last preceding line that matches the specified regexp.
  1186. X
  1187. X   -H    use heuristics to speed handling of large files that
  1188. X    have numerous scattered small changes.  The algorithm becomes
  1189. X        asymptotically linear for such files!
  1190. X    
  1191. X   -I regexp
  1192. X    ignore changes that just insert or delete lines that
  1193. X    match the specified regexp.
  1194. X
  1195. X   -N    in directory comparison, if a file is found in only one directory,
  1196. X    treat it as present but empty in the other directory.
  1197. X
  1198. X   -p    equivalent to -c -F'^[_a-zA-Z]'.  This is useful for C code
  1199. X    because it shows which function each change is in.
  1200. X
  1201. X   -T    print a tab rather than a space before the text of a line
  1202. X    in normal or context format.  This causes the alignment
  1203. X    of tabs in the line to look normal.
  1204. X
  1205. X
  1206. X
  1207. XGNU DIFF was written by Mike Haertel, David Hayes, Richard Stallman
  1208. Xand Len Tower.  The basic algorithm is described in: "An O(ND)
  1209. XDifference Algorithm and its Variations", Eugene Myers, Algorithmica
  1210. XVol. 1 No. 2, 1986, p 251.
  1211. X
  1212. X
  1213. XSuggested projects for improving GNU DIFF:
  1214. X
  1215. X* Handle very large files by not keeping the entire text in core.
  1216. X
  1217. XOne way to do this is to scan the files sequentally to compute hash
  1218. Xcodes of the lines and put the lines in equivalence classes based only
  1219. Xon hash code.  Then compare the files normally.  This will produce
  1220. Xsome false matches.
  1221. X
  1222. XThen scan the two files sequentially again, checking each match to see
  1223. Xwhether it is real.  When a match is not real, mark both the
  1224. X"matching" lines as changed.  Then build an edit script as usual.
  1225. X
  1226. XThe output routines would have to be changed to scan the files
  1227. Xsequentially looking for the text to print.
  1228. SHAR_EOF
  1229. echo "extracting diff/diff.h"
  1230. sed 's/^X//' << \SHAR_EOF > diff/diff.h
  1231. X/* Shared definitions for GNU DIFF
  1232. X   Copyright (C) 1988, 1989 Free Software Foundation, Inc.
  1233. X
  1234. XThis file is part of GNU DIFF.
  1235. X
  1236. XGNU DIFF is free software; you can redistribute it and/or modify
  1237. Xit under the terms of the GNU General Public License as published by
  1238. Xthe Free Software Foundation; either version 1, or (at your option)
  1239. Xany later version.
  1240. X
  1241. XGNU DIFF is distributed in the hope that it will be useful,
  1242. Xbut WITHOUT ANY WARRANTY; without even the implied warranty of
  1243. XMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1244. XGNU General Public License for more details.
  1245. X
  1246. XYou should have received a copy of the GNU General Public License
  1247. Xalong with GNU DIFF; see the file COPYING.  If not, write to
  1248. Xthe Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  1249. X
  1250. X
  1251. X#include <ctype.h>
  1252. X#include <stdio.h>
  1253. X#ifndef AMIGA
  1254. X#include <sys/types.h>
  1255. X#include <sys/stat.h>
  1256. X
  1257. X#ifdef USG
  1258. X#include <time.h>
  1259. X#ifdef hp9000s800
  1260. X#include <ndir.h>
  1261. X#else
  1262. X#include <dirent.h>
  1263. X#endif
  1264. X#include <fcntl.h>
  1265. X#define direct dirent
  1266. X#else
  1267. X#include <sys/time.h>
  1268. X#include <sys/dir.h>
  1269. X#include <sys/file.h>
  1270. X#endif USG
  1271. X#else
  1272. X#include "stat.h"
  1273. X#include "dir.h"
  1274. X#ifndef RE_NREGS
  1275. X#include "regex.h"
  1276. X#endif
  1277. X#endif AMIGA
  1278. X
  1279. X#ifdef AMIGA
  1280. X#define bcmp(a,b,l) memcmp((a),(b),(l))
  1281. X#define bcopy(f,t,l) movmem((f),(t),(l))
  1282. X#define bzero(a,l) memset((a),0,(l))
  1283. X#define index    strchr
  1284. X#define rindex    strrchr
  1285. X#endif
  1286. X
  1287. X#ifdef USG
  1288. X/* Define needed BSD functions in terms of sysV library.  */
  1289. X
  1290. X#define bcopy(s,d,n)    memcpy((d),(s),(n))
  1291. X#define bcmp(s1,s2,n)    memcmp((s1),(s2),(n))
  1292. X#define bzero(s,n)    memset((s),0,(n))
  1293. X
  1294. X#define dup2(f,t)    (close(t),fcntl((f),F_DUPFD,(t)))
  1295. X
  1296. X#define vfork    fork
  1297. X#define index    strchr
  1298. X#define rindex    strrchr
  1299. X#endif
  1300. X
  1301. X#include <errno.h>
  1302. Xextern int      errno;
  1303. Xextern int      sys_nerr;
  1304. Xextern char    *sys_errlist[];
  1305. X
  1306. X#define    EOS        (0)
  1307. X#ifdef AMIGA
  1308. X#undef FALSE
  1309. X#endif
  1310. X#define    FALSE        (0)
  1311. X#define TRUE        1
  1312. X
  1313. X#ifndef AMIGA
  1314. X#define min(a,b) ((a) <= (b) ? (a) : (b))
  1315. X#define max(a,b) ((a) >= (b) ? (a) : (b))
  1316. X#endif
  1317. X
  1318. X#ifndef PR_FILE_NAME
  1319. X#define PR_FILE_NAME "/bin/pr"
  1320. X#endif
  1321. X
  1322. X/* Support old-fashioned C compilers.  */
  1323. X#if defined (__STDC__) || defined (__GNUC__)
  1324. X#include "limits.h"
  1325. X#else
  1326. X#define INT_MAX 2147483647
  1327. X#define CHAR_BIT 8
  1328. X#endif
  1329. X
  1330. X/* Support old-fashioned C compilers.  */
  1331. X#if !defined (__STDC__) && !defined (__GNUC__)
  1332. X#define const
  1333. X#endif
  1334. X
  1335. X/* Variables for command line options */
  1336. X
  1337. X#ifndef GDIFF_MAIN
  1338. X#define EXTERN extern
  1339. X#else
  1340. X#define EXTERN
  1341. X#endif
  1342. X
  1343. Xenum output_style {
  1344. X  /* Default output style.  */
  1345. X  OUTPUT_NORMAL,
  1346. X  /* Output the differences with lines of context before and after (-c).  */
  1347. X  OUTPUT_CONTEXT,
  1348. X  /* Output the differences as commands suitable for `ed' (-e).  */
  1349. X  OUTPUT_ED,
  1350. X  /* Output the diff as a forward ed script (-f).  */
  1351. X  OUTPUT_FORWARD_ED,
  1352. X  /* Like -f, but output a count of changed lines in each "command" (-n). */
  1353. X  OUTPUT_RCS };
  1354. X
  1355. XEXTERN enum output_style output_style;
  1356. X
  1357. X/* Number of lines of context to show in each set of diffs.
  1358. X   This is zero when context is not to be shown.  */
  1359. XEXTERN int      context;
  1360. X
  1361. X/* Consider all files as text files (-a).
  1362. X   Don't interpret codes over 0177 as implying a "binary file".  */
  1363. XEXTERN int    always_text_flag;
  1364. X
  1365. X/* Ignore changes in horizontal whitespace (-b).  */
  1366. XEXTERN int      ignore_space_change_flag;
  1367. X
  1368. X/* Ignore all horizontal whitespace (-w).  */
  1369. XEXTERN int      ignore_all_space_flag;
  1370. X
  1371. X/* Ignore changes that affect only blank lines (-B).  */
  1372. XEXTERN int      ignore_blank_lines_flag;
  1373. X
  1374. X/* Ignore changes that affect only lines matching this regexp (-I).  */
  1375. XEXTERN char    *ignore_regexp;
  1376. X
  1377. X/* Result of regex-compilation of `ignore_regexp'.  */
  1378. XEXTERN struct re_pattern_buffer ignore_regexp_compiled;
  1379. X
  1380. X/* 1 if lines may match even if their lengths are different.
  1381. X   This depends on various options.  */
  1382. XEXTERN int      length_varies;
  1383. X
  1384. X/* Ignore differences in case of letters (-i).  */
  1385. XEXTERN int      ignore_case_flag;
  1386. X
  1387. X/* Regexp to identify function-header lines (-F).  */
  1388. XEXTERN char    *function_regexp;
  1389. X
  1390. X/* Result of regex-compilation of `function_regexp'.  */
  1391. XEXTERN struct re_pattern_buffer function_regexp_compiled;
  1392. X
  1393. X/* Report files compared that match (-s).
  1394. X   Normally nothing is output when that happens.  */
  1395. XEXTERN int      print_file_same_flag;
  1396. X
  1397. X/* character that ends a line.  Currently this is always `\n'.  */
  1398. XEXTERN char     line_end_char;
  1399. X
  1400. X/* Output the differences with exactly 8 columns added to each line
  1401. X   so that any tabs in the text line up properly (-T).  */
  1402. XEXTERN int    tab_align_flag;
  1403. X
  1404. X/* Expand tabs in the output so the text lines up properly
  1405. X   despite the characters added to the front of each line (-t).  */
  1406. XEXTERN int    tab_expand_flag;
  1407. X
  1408. X/* In directory comparison, specify file to start with (-S).
  1409. X   All file names less than this name are ignored.  */
  1410. XEXTERN char    *dir_start_file;
  1411. X
  1412. X/* If a file is new (appears in only one dir)
  1413. X   include its entire contents (-N).
  1414. X   Then `patch' would create the file with appropriate contents.  */
  1415. XEXTERN int    entire_new_file_flag;
  1416. X
  1417. X/* Pipe each file's output through pr (-l).  */
  1418. XEXTERN int    paginate_flag;
  1419. X
  1420. X/* String containing all the command options diff received,
  1421. X   with spaces between and at the beginning but none at the end.
  1422. X   If there were no options given, this string is empty.  */
  1423. XEXTERN char *    switch_string;
  1424. X
  1425. X/* Nonzero means use heuristics for better speed.  */
  1426. XEXTERN int    heuristic;
  1427. X
  1428. X/* Name of program the user invoked (for error messages).  */
  1429. XEXTERN char *    program;
  1430. X
  1431. X/* The result of comparison is an "edit script": a chain of `struct change'.
  1432. X   Each `struct change' represents one place where some lines are deleted
  1433. X   and some are inserted.
  1434. X   
  1435. X   LINE0 and LINE1 are the first affected lines in the two files (origin 0).
  1436. X   DELETED is the number of lines deleted here from file 0.
  1437. X   INSERTED is the number of lines inserted here in file 1.
  1438. X
  1439. X   If DELETED is 0 then LINE0 is the number of the line before
  1440. X   which the insertion was done; vice versa for INSERTED and LINE1.  */
  1441. X
  1442. Xstruct change
  1443. X{
  1444. X  struct change *link;        /* Previous or next edit command  */
  1445. X  int inserted;            /* # lines of file 1 changed here.  */
  1446. X  int deleted;            /* # lines of file 0 changed here.  */
  1447. X  int line0;            /* Line number of 1st deleted line.  */
  1448. X  int line1;            /* Line number of 1st inserted line.  */
  1449. X  char ignore;            /* Flag used in context.c */
  1450. X};
  1451. X
  1452. X/* Structures that describe the input files.  */
  1453. X
  1454. X/* Data on one line of text.  */
  1455. X
  1456. Xstruct line_def {
  1457. X    char        *text;
  1458. X    int         length;
  1459. X    unsigned    hash;
  1460. X};
  1461. X
  1462. X/* Data on one input file being compared.  */
  1463. X
  1464. Xstruct file_data {
  1465. X    int             desc;    /* File descriptor  */
  1466. X    char           *name;    /* File name  */
  1467. X    struct stat     stat;    /* File status from fstat()  */
  1468. X    int             dir_p;    /* 1 if file is a directory  */
  1469. X
  1470. X    /* Buffer in which text of file is read.  */
  1471. X    char *        buffer;
  1472. X    /* Allocated size of buffer.  */
  1473. X    int            bufsize;
  1474. X    /* Number of valid characters now in the buffer. */
  1475. X    int            buffered_chars;
  1476. X
  1477. X    /* Array of data on analyzed lines of this chunk of this file.  */
  1478. X    struct line_def *linbuf;
  1479. X
  1480. X    /* Allocated size of linbuf array (# of elements).  */
  1481. X    int            linbufsize;
  1482. X
  1483. X    /* Number of elements of linbuf containing valid data. */
  1484. X    int            buffered_lines;
  1485. X
  1486. X    /* Pointer to end of prefix of this file to ignore when hashing. */
  1487. X    char *prefix_end;
  1488. X
  1489. X    /* Count of lines in the prefix. */
  1490. X    int prefix_lines;
  1491. X
  1492. X    /* Pointer to start of suffix of this file to ignore when hashing. */
  1493. X    char *suffix_begin;
  1494. X
  1495. X    /* Count of lines in the suffix. */
  1496. X    int suffix_lines;
  1497. X
  1498. X    /* Vector, indexed by line number, containing an equivalence code for
  1499. X       each line.  It is this vector that is actually compared with that
  1500. X       of another file to generate differences. */
  1501. X    int           *equivs;
  1502. X
  1503. X    /* Vector, like the previous one except that
  1504. X       the elements for discarded lines have been squeezed out.  */
  1505. X    int           *undiscarded;
  1506. X
  1507. X    /* Vector mapping virtual line numbers (not counting discarded lines)
  1508. X       to real ones (counting those lines).  Both are origin-0.  */
  1509. X    int           *realindexes;
  1510. X
  1511. X    /* Total number of nondiscarded lines. */
  1512. X    int            nondiscarded_lines;
  1513. X
  1514. X    /* Vector, indexed by real origin-0 line number,
  1515. X       containing 1 for a line that is an insertion or a deletion.
  1516. X       The results of comparison are stored here.  */
  1517. X    char       *changed_flag;
  1518. X
  1519. X    /* 1 if file ends in a line with no final newline. */
  1520. X    int            missing_newline;
  1521. X
  1522. X    /* 1 more than the maximum equivalence value used for this or its
  1523. X       sibling file. */
  1524. X    int equiv_max;
  1525. X
  1526. X    /* Table translating diff's internal line numbers 
  1527. X       to actual line numbers in the file.
  1528. X       This is needed only when some lines have been discarded.
  1529. X       The allocated size is always linbufsize
  1530. X       and the number of valid elements is buffered_lines.  */
  1531. X    int           *ltran;
  1532. X};
  1533. X
  1534. X/* Describe the two files currently being compared.  */
  1535. X
  1536. XEXTERN struct file_data files[2];
  1537. X
  1538. X/* Queue up one-line messages to be printed at the end,
  1539. X   when -l is specified.  Each message is recorded with a `struct msg'.  */
  1540. X
  1541. Xstruct msg
  1542. X{
  1543. X  struct msg *next;
  1544. X  char *format;
  1545. X  char *arg1;
  1546. X  char *arg2;
  1547. X};
  1548. X
  1549. X/* Head of the chain of queues messages.  */
  1550. X
  1551. XEXTERN struct msg *msg_chain;
  1552. X
  1553. X/* Tail of the chain of queues messages.  */
  1554. X
  1555. XEXTERN struct msg *msg_chain_end;
  1556. X
  1557. X/* Stdio stream to output diffs to.  */
  1558. X
  1559. XEXTERN FILE *outfile;
  1560. X
  1561. X/* Declare various functions.  */
  1562. X
  1563. Xvoid *xmalloc ();
  1564. Xvoid *xrealloc ();
  1565. Xvoid *xcalloc();
  1566. Xchar *concat ();
  1567. Xvoid free ();
  1568. Xchar *rindex ();
  1569. Xchar *index ();
  1570. X
  1571. Xvoid message ();
  1572. Xvoid print_message_queue ();
  1573. SHAR_EOF
  1574. echo "extracting diff/limits.h"
  1575. sed 's/^X//' << \SHAR_EOF > diff/limits.h
  1576. X/* Number of bits in a `char'.  */
  1577. X#define CHAR_BIT 8
  1578. X
  1579. X/* No multibyte characters supported yet.  */
  1580. X#define MB_LEN_MAX 1
  1581. X
  1582. X/* Minimum and maximum values a `signed char' can hold.  */
  1583. X#define SCHAR_MIN -128
  1584. X#define SCHAR_MAX 127
  1585. X
  1586. X/* Maximum value an `unsigned char' can hold.  (Minimum is 0).  */
  1587. X#define UCHAR_MAX 255U
  1588. X
  1589. X/* Minimum and maximum values a `char' can hold.  */
  1590. X#ifdef __CHAR_UNSIGNED__
  1591. X#define CHAR_MIN 0
  1592. X#define CHAR_MAX 255U
  1593. X#else
  1594. X#define CHAR_MIN -128
  1595. X#define CHAR_MAX 127
  1596. X#endif
  1597. X
  1598. X/* Minimum and maximum values a `signed short int' can hold.  */
  1599. X#define SHRT_MIN -32768
  1600. X#define SHRT_MAX 32767
  1601. X
  1602. X/* Maximum value an `unsigned short int' can hold.  (Minimum is 0).  */
  1603. X#define USHRT_MAX 65535U
  1604. X
  1605. X/* Minimum and maximum values a `signed int' can hold.  */
  1606. X#define INT_MIN -2147483648
  1607. X#define INT_MAX 2147483647
  1608. X
  1609. X/* Maximum value an `unsigned int' can hold.  (Minimum is 0).  */
  1610. X#define UINT_MAX 4294967295U
  1611. X
  1612. X/* Minimum and maximum values a `signed long int' can hold.
  1613. X   (Same as `int').  */
  1614. X#define LONG_MIN -2147483648
  1615. X#define LONG_MAX 2147483647
  1616. X
  1617. X/* Maximum value an `unsigned long int' can hold.  (Minimum is 0).  */
  1618. X#define ULONG_MAX 4294967295U
  1619. SHAR_EOF
  1620. echo "extracting diff/regex.h"
  1621. sed 's/^X//' << \SHAR_EOF > diff/regex.h
  1622. X/* Definitions for data structures callers pass the regex library.
  1623. X   Copyright (C) 1985 Free Software Foundation, Inc.
  1624. X
  1625. X               NO WARRANTY
  1626. X
  1627. X  BECAUSE THIS PROGRAM IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY
  1628. XNO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW.  EXCEPT
  1629. XWHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,
  1630. XRICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE THIS PROGRAM "AS IS"
  1631. XWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
  1632. XBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  1633. XFITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY
  1634. XAND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE
  1635. XDEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
  1636. XCORRECTION.
  1637. X
  1638. X IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M.
  1639. XSTALLMAN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY
  1640. XWHO MAY MODIFY AND REDISTRIBUTE THIS PROGRAM AS PERMITTED BELOW, BE
  1641. XLIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR
  1642. XOTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  1643. XUSE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR
  1644. XDATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR
  1645. XA FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) THIS
  1646. XPROGRAM, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
  1647. XDAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY.
  1648. X
  1649. X        GENERAL PUBLIC LICENSE TO COPY
  1650. X
  1651. X  1. You may copy and distribute verbatim copies of this source file
  1652. Xas you receive it, in any medium, provided that you conspicuously and
  1653. Xappropriately publish on each copy a valid copyright notice "Copyright
  1654. X(C) 1985 Free Software Foundation, Inc."; and include following the
  1655. Xcopyright notice a verbatim copy of the above disclaimer of warranty
  1656. Xand of this License.  You may charge a distribution fee for the
  1657. Xphysical act of transferring a copy.
  1658. X
  1659. X  2. You may modify your copy or copies of this source file or
  1660. Xany portion of it, and copy and distribute such modifications under
  1661. Xthe terms of Paragraph 1 above, provided that you also do the following:
  1662. X
  1663. X    a) cause the modified files to carry prominent notices stating
  1664. X    that you changed the files and the date of any change; and
  1665. X
  1666. X    b) cause the whole of any work that you distribute or publish,
  1667. X    that in whole or in part contains or is a derivative of this
  1668. X    program or any part thereof, to be licensed at no charge to all
  1669. X    third parties on terms identical to those contained in this
  1670. X    License Agreement (except that you may choose to grant more extensive
  1671. X    warranty protection to some or all third parties, at your option).
  1672. X
  1673. X    c) You may charge a distribution fee for the physical act of
  1674. X    transferring a copy, and you may at your option offer warranty
  1675. X    protection in exchange for a fee.
  1676. X
  1677. XMere aggregation of another unrelated program with this program (or its
  1678. Xderivative) on a volume of a storage or distribution medium does not bring
  1679. Xthe other program under the scope of these terms.
  1680. X
  1681. X  3. You may copy and distribute this program (or a portion or derivative
  1682. Xof it, under Paragraph 2) in object code or executable form under the terms
  1683. Xof Paragraphs 1 and 2 above provided that you also do one of the following:
  1684. X
  1685. X    a) accompany it with the complete corresponding machine-readable
  1686. X    source code, which must be distributed under the terms of
  1687. X    Paragraphs 1 and 2 above; or,
  1688. X
  1689. X    b) accompany it with a written offer, valid for at least three
  1690. X    years, to give any third party free (except for a nominal
  1691. X    shipping charge) a complete machine-readable copy of the
  1692. X    corresponding source code, to be distributed under the terms of
  1693. X    Paragraphs 1 and 2 above; or,
  1694. X
  1695. X    c) accompany it with the information you received as to where the
  1696. X    corresponding source code may be obtained.  (This alternative is
  1697. X    allowed only for noncommercial distribution and only if you
  1698. X    received the program in object code or executable form alone.)
  1699. X
  1700. XFor an executable file, complete source code means all the source code for
  1701. Xall modules it contains; but, as a special exception, it need not include
  1702. Xsource code for modules which are standard libraries that accompany the
  1703. Xoperating system on which the executable file runs.
  1704. X
  1705. X  4. You may not copy, sublicense, distribute or transfer this program
  1706. Xexcept as expressly provided under this License Agreement.  Any attempt
  1707. Xotherwise to copy, sublicense, distribute or transfer this program is void and
  1708. Xyour rights to use the program under this License agreement shall be
  1709. Xautomatically terminated.  However, parties who have received computer
  1710. Xsoftware programs from you with this License Agreement will not have
  1711. Xtheir licenses terminated so long as such parties remain in full compliance.
  1712. X
  1713. X  5. If you wish to incorporate parts of this program into other free
  1714. Xprograms whose distribution conditions are different, write to the Free
  1715. XSoftware Foundation at 675 Mass Ave, Cambridge, MA 02139.  We have not yet
  1716. Xworked out a simple rule that can be stated here, but we will often permit
  1717. Xthis.  We will be guided by the two goals of preserving the free status of
  1718. Xall derivatives of our free software and of promoting the sharing and reuse of
  1719. Xsoftware.
  1720. X
  1721. X
  1722. XIn other words, you are welcome to use, share and improve this program.
  1723. XYou are forbidden to forbid anyone else to use, share and improve
  1724. Xwhat you give them.   Help stamp out software-hoarding!  */
  1725. X
  1726. X
  1727. X/* Define number of parens for which we record the beginnings and ends.
  1728. X   This affects how much space the `struct re_registers' type takes up.  */
  1729. X#ifndef RE_NREGS
  1730. X#define RE_NREGS 10
  1731. X#endif
  1732. X
  1733. X/* These bits are used in the obscure_syntax variable to choose among
  1734. X   alternative regexp syntaxes.  */
  1735. X
  1736. X/* 1 means plain parentheses serve as grouping, and backslash
  1737. X     parentheses are needed for literal searching.
  1738. X   0 means backslash-parentheses are grouping, and plain parentheses
  1739. X     are for literal searching.  */
  1740. X#define RE_NO_BK_PARENS 1
  1741. X
  1742. X/* 1 means plain | serves as the "or"-operator, and \| is a literal.
  1743. X   0 means \| serves as the "or"-operator, and | is a literal.  */
  1744. X#define RE_NO_BK_VBAR 2
  1745. X
  1746. X/* 0 means plain + or ? serves as an operator, and \+, \? are literals.
  1747. X   1 means \+, \? are operators and plain +, ? are literals.  */
  1748. X#define RE_BK_PLUS_QM 4
  1749. X
  1750. X/* 1 means | binds tighter than ^ or $.
  1751. X   0 means the contrary.  */
  1752. X#define RE_TIGHT_VBAR 8
  1753. X
  1754. X/* 1 means treat \n as an _OR operator
  1755. X   0 means treat it as a normal character */
  1756. X#define RE_NEWLINE_OR 16
  1757. X
  1758. X/* 0 means that a special characters (such as *, ^, and $) always have
  1759. X     their special meaning regardless of the surrounding context.
  1760. X   1 means that special characters may act as normal characters in some
  1761. X     contexts.  Specifically, this applies to:
  1762. X    ^ - only special at the beginning, or after ( or |
  1763. X    $ - only special at the end, or before ) or |
  1764. X    *, +, ? - only special when not after the beginning, (, or | */
  1765. X#define RE_CONTEXT_INDEP_OPS 32
  1766. X
  1767. X/* Now define combinations of bits for the standard possibilities.  */
  1768. X#define RE_SYNTAX_AWK (RE_NO_BK_PARENS | RE_NO_BK_VBAR | RE_CONTEXT_INDEP_OPS)
  1769. X#define RE_SYNTAX_EGREP (RE_SYNTAX_AWK | RE_NEWLINE_OR)
  1770. X#define RE_SYNTAX_GREP (RE_BK_PLUS_QM | RE_NEWLINE_OR)
  1771. X#define RE_SYNTAX_EMACS 0
  1772. X
  1773. X/* This data structure is used to represent a compiled pattern. */
  1774. X
  1775. Xstruct re_pattern_buffer
  1776. X  {
  1777. X    char *buffer;    /* Space holding the compiled pattern commands. */
  1778. X    int allocated;    /* Size of space that  buffer  points to */
  1779. X    int used;        /* Length of portion of buffer actually occupied */
  1780. X    char *fastmap;    /* Pointer to fastmap, if any, or zero if none. */
  1781. X            /* re_search uses the fastmap, if there is one,
  1782. X               to skip quickly over totally implausible characters */
  1783. X    char *translate;    /* Translate table to apply to all characters before comparing.
  1784. X               Or zero for no translation.
  1785. X               The translation is applied to a pattern when it is compiled
  1786. X               and to data when it is matched. */
  1787. X    char fastmap_accurate;
  1788. X            /* Set to zero when a new pattern is stored,
  1789. X               set to one when the fastmap is updated from it. */
  1790. X    char can_be_null;   /* Set to one by compiling fastmap
  1791. X               if this pattern might match the null string.
  1792. X               It does not necessarily match the null string
  1793. X               in that case, but if this is zero, it cannot.
  1794. X               2 as value means can match null string
  1795. X               but at end of range or before a character
  1796. X               listed in the fastmap.  */
  1797. X  };
  1798. X
  1799. X/* Structure to store "register" contents data in.
  1800. X
  1801. X   Pass the address of such a structure as an argument to re_match, etc.,
  1802. X   if you want this information back.
  1803. X
  1804. X   start[i] and end[i] record the string matched by \( ... \) grouping i,
  1805. X   for i from 1 to RE_NREGS - 1.
  1806. X   start[0] and end[0] record the entire string matched. */
  1807. X
  1808. Xstruct re_registers
  1809. X  {
  1810. X    int start[RE_NREGS];
  1811. X    int end[RE_NREGS];
  1812. X  };
  1813. X
  1814. X/* These are the command codes that appear in compiled regular expressions, one per byte.
  1815. X  Some command codes are followed by argument bytes.
  1816. X  A command code can specify any interpretation whatever for its arguments.
  1817. X  Zero-bytes may appear in the compiled regular expression. */
  1818. X
  1819. Xenum regexpcode
  1820. X  {
  1821. X    unused,
  1822. X    exactn,    /* followed by one byte giving n, and then by n literal bytes */
  1823. X    begline,   /* fails unless at beginning of line */
  1824. X    endline,   /* fails unless at end of line */
  1825. X    jump,     /* followed by two bytes giving relative address to jump to */
  1826. X    on_failure_jump,     /* followed by two bytes giving relative address of place
  1827. X                    to resume at in case of failure. */
  1828. X    finalize_jump,     /* Throw away latest failure point and then jump to address. */
  1829. X    maybe_finalize_jump, /* Like jump but finalize if safe to do so.
  1830. X                This is used to jump back to the beginning
  1831. X                of a repeat.  If the command that follows
  1832. X                this jump is clearly incompatible with the
  1833. X                one at the beginning of the repeat, such that
  1834. X                we can be sure that there is no use backtracking
  1835. X                out of repetitions already completed,
  1836. X                then we finalize. */
  1837. X    dummy_failure_jump,  /* jump, and push a dummy failure point.
  1838. X                This failure point will be thrown away
  1839. X                if an attempt is made to use it for a failure.
  1840. X                A + construct makes this before the first repeat.  */
  1841. X    anychar,     /* matches any one character */
  1842. X    charset,     /* matches any one char belonging to specified set.
  1843. X            First following byte is # bitmap bytes.
  1844. X            Then come bytes for a bit-map saying which chars are in.
  1845. X            Bits in each byte are ordered low-bit-first.
  1846. X            A character is in the set if its bit is 1.
  1847. X            A character too large to have a bit in the map
  1848. X            is automatically not in the set */
  1849. X    charset_not, /* similar but match any character that is NOT one of those specified */
  1850. X    start_memory, /* starts remembering the text that is matched
  1851. X            and stores it in a memory register.
  1852. X            followed by one byte containing the register number.
  1853. X            Register numbers must be in the range 0 through NREGS. */
  1854. X    stop_memory, /* stops remembering the text that is matched
  1855. X            and stores it in a memory register.
  1856. X            followed by one byte containing the register number.
  1857. X            Register numbers must be in the range 0 through NREGS. */
  1858. X    duplicate,    /* match a duplicate of something remembered.
  1859. X            Followed by one byte containing the index of the memory register. */
  1860. X    before_dot,     /* Succeeds if before dot */
  1861. X    at_dot,     /* Succeeds if at dot */
  1862. X    after_dot,     /* Succeeds if after dot */
  1863. X    begbuf,      /* Succeeds if at beginning of buffer */
  1864. X    endbuf,      /* Succeeds if at end of buffer */
  1865. X    wordchar,    /* Matches any word-constituent character */
  1866. X    notwordchar, /* Matches any char that is not a word-constituent */
  1867. X    wordbeg,     /* Succeeds if at word beginning */
  1868. X    wordend,     /* Succeeds if at word end */
  1869. X    wordbound,   /* Succeeds if at a word boundary */
  1870. X    notwordbound, /* Succeeds if not at a word boundary */
  1871. X    syntaxspec,  /* Matches any character whose syntax is specified.
  1872. X            followed by a byte which contains a syntax code, Sword or such like */
  1873. X    notsyntaxspec /* Matches any character whose syntax differs from the specified. */
  1874. X  };
  1875. X
  1876. Xextern char *re_compile_pattern ();
  1877. X/* Is this really advertised? */
  1878. Xextern void re_compile_fastmap ();
  1879. Xextern int re_search (), re_search_2 ();
  1880. Xextern int re_match (), re_match_2 ();
  1881. X
  1882. X/* 4.2 bsd compatibility (yuck) */
  1883. Xextern char *re_comp ();
  1884. Xextern int re_exec ();
  1885. X
  1886. X#ifdef SYNTAX_TABLE
  1887. Xextern char *re_syntax_table;
  1888. X#endif
  1889. SHAR_EOF
  1890. echo "extracting diff/stat.h"
  1891. sed 's/^X//' << \SHAR_EOF > diff/stat.h
  1892. X#include <fcntl.h>
  1893. X
  1894. Xstruct stat {
  1895. X    long st_attr;
  1896. X    long st_mtime;
  1897. X    long st_size;
  1898. X    long st_type;
  1899. X};
  1900. SHAR_EOF
  1901. echo "extracting diff/diff.h.old"
  1902. sed 's/^X//' << \SHAR_EOF > diff/diff.h.old
  1903. X/* Shared definitions for GNU DIFF
  1904. X   Copyright (C) 1988 Free Software Foundation, Inc.
  1905. X
  1906. XThis file is part of GNU DIFF.
  1907. X
  1908. XGNU DIFF is distributed in the hope that it will be useful,
  1909. Xbut WITHOUT ANY WARRANTY.  No author or distributor
  1910. Xaccepts responsibility to anyone for the consequences of using it
  1911. Xor for whether it serves any particular purpose or works at all,
  1912. Xunless he says so in writing.  Refer to the GNU DIFF General Public
  1913. XLicense for full details.
  1914. X
  1915. XEveryone is granted permission to copy, modify and redistribute
  1916. XGNU DIFF, but only under the conditions described in the
  1917. XGNU DIFF General Public License.   A copy of this license is
  1918. Xsupposed to have been given to you along with GNU DIFF so you
  1919. Xcan know your rights and responsibilities.  It should be in a
  1920. Xfile named COPYING.  Among other things, the copyright notice
  1921. Xand this notice must be preserved on all copies.  */
  1922. X
  1923. X
  1924. X#include <ctype.h>
  1925. X#include <stdio.h>
  1926. X#ifndef AMIGA
  1927. X#include <sys/file.h>
  1928. X#include <types.h>
  1929. X#include <stat.h>
  1930. X#else
  1931. X#include "stat.h"
  1932. X#endif
  1933. X#include <time.h>
  1934. X#ifdef AMIGA
  1935. X#include "dir.h"
  1936. X#else
  1937. X#include <sys/dir.h>
  1938. X#endif
  1939. X#include <errno.h>
  1940. X#ifndef RE_NREGS
  1941. X#include "regex.h"
  1942. X#endif
  1943. X#include <string.h>
  1944. X
  1945. X/* Support old-fashioned C compilers.  */
  1946. X#if defined (__STDC__) || defined (__GNUC__)
  1947. X#include "limits.h"
  1948. X#else
  1949. X#define INT_MAX 2147483647
  1950. X#define CHAR_BIT 8
  1951. X#endif
  1952. X
  1953. Xextern int      errno;
  1954. Xextern int      sys_nerr;
  1955. Xextern char    *sys_errlist[];
  1956. X
  1957. X#define    EOS        (0)
  1958. X#ifdef AMIGA
  1959. X#undef FALSE
  1960. X#endif
  1961. X#define    FALSE        (0)
  1962. X#define TRUE        1
  1963. X
  1964. X#ifndef AMIGA
  1965. X#define min(a,b) ((a) <= (b) ? (a) : (b))
  1966. X#define max(a,b) ((a) >= (b) ? (a) : (b))
  1967. X#endif
  1968. X#ifdef AMIGA
  1969. X#define bcmp(a,b,l) memcmp(a,b,l)
  1970. X#define bcopy(f,t,l) movmem(f,t,l)
  1971. X#define bzero(a,l) memset(a,0,l)
  1972. X#endif
  1973. X
  1974. X#ifndef PR_FILE_NAME
  1975. X#define PR_FILE_NAME "/bin/pr"
  1976. X#endif
  1977. X
  1978. X/* Support old-fashioned C compilers.  */
  1979. X#if !defined (__STDC__) && !defined (__GNUC__)
  1980. X#define const
  1981. X#endif
  1982. X
  1983. X/* Variables for command line options */
  1984. X
  1985. X#ifndef GDIFF_MAIN
  1986. X#define EXTERN extern
  1987. X#else
  1988. X#define EXTERN
  1989. X#endif
  1990. X
  1991. Xenum output_style {
  1992. X  /* Default output style.  */
  1993. X  OUTPUT_NORMAL,
  1994. X  /* Output the differences with lines of context before and after (-c).  */
  1995. X  OUTPUT_CONTEXT,
  1996. X  /* Output the differences as commands suitable for `ed' (-e).  */
  1997. X  OUTPUT_ED,
  1998. X  /* Output the diff as a forward ed script (-f).  */
  1999. X  OUTPUT_FORWARD_ED,
  2000. X  /* Like -f, but output a count of changed lines in each "command" (-n). */
  2001. X  OUTPUT_RCS };
  2002. X
  2003. XEXTERN enum output_style output_style;
  2004. X
  2005. X/* Number of lines of context to show in each set of diffs.
  2006. X   This is zero when context is not to be shown.  */
  2007. XEXTERN int      context;
  2008. X
  2009. X/* Consider all files as text files (-a).
  2010. X   Don't interpret codes over 0177 as implying a "binary file".  */
  2011. XEXTERN int    always_text_flag;
  2012. X
  2013. X/* Ignore changes in horizontal whitespace (-b).  */
  2014. XEXTERN int      ignore_space_change_flag;
  2015. X
  2016. X/* Ignore all horizontal whitespace (-w).  */
  2017. XEXTERN int      ignore_all_space_flag;
  2018. X
  2019. X/* Ignore changes that affect only blank lines (-B).  */
  2020. XEXTERN int      ignore_blank_lines_flag;
  2021. X
  2022. X/* Ignore changes that affect only lines matching this regexp (-I).  */
  2023. XEXTERN char    *ignore_regexp;
  2024. X
  2025. X/* Result of regex-compilation of `ignore_regexp'.  */
  2026. XEXTERN struct re_pattern_buffer ignore_regexp_compiled;
  2027. X
  2028. X/* 1 if lines may match even if their lengths are different.
  2029. X   This depends on various options.  */
  2030. XEXTERN int      length_varies;
  2031. X
  2032. X/* Ignore differences in case of letters (-i).  */
  2033. XEXTERN int      ignore_case_flag;
  2034. X
  2035. X/* Regexp to identify function-header lines (-F).  */
  2036. XEXTERN char    *function_regexp;
  2037. X
  2038. X/* Result of regex-compilation of `function_regexp'.  */
  2039. XEXTERN struct re_pattern_buffer function_regexp_compiled;
  2040. X
  2041. X/* Report files compared that match (-s).
  2042. X   Normally nothing is output when that happens.  */
  2043. XEXTERN int      print_file_same_flag;
  2044. X
  2045. X/* character that ends a line.  Currently this is always `\n'.  */
  2046. XEXTERN char     line_end_char;
  2047. X
  2048. X/* Output the differences with exactly 8 columns added to each line
  2049. X   so that any tabs in the text line up properly (-T).  */
  2050. XEXTERN int    tab_align_flag;
  2051. X
  2052. X/* Expand tabs in the output so the text lines up properly
  2053. X   despite the characters added to the front of each line (-t).  */
  2054. XEXTERN int    tab_expand_flag;
  2055. X
  2056. X/* In directory comparison, specify file to start with (-S).
  2057. X   All file names less than this name are ignored.  */
  2058. XEXTERN char    *dir_start_file;
  2059. X
  2060. X/* If a file is new (appears in only one dir)
  2061. X   include its entire contents (-N).
  2062. X   Then `patch' would create the file with appropriate contents.  */
  2063. XEXTERN int    entire_new_file_flag;
  2064. X
  2065. X/* Pipe each file's output through pr (-l).  */
  2066. XEXTERN int    paginate_flag;
  2067. X
  2068. X/* String containing all the command options diff received,
  2069. X   with spaces between and at the beginning but none at the end.
  2070. X   If there were no options given, this string is empty.  */
  2071. XEXTERN char *    switch_string;
  2072. X
  2073. X/* Nonzero means use heuristics for better speed.  */
  2074. XEXTERN int    heuristic;
  2075. X
  2076. X/* Name of program the user invoked (for error messages).  */
  2077. XEXTERN char *    program;
  2078. X
  2079. X/* The result of comparison is an "edit script": a chain of `struct change'.
  2080. X   Each `struct change' represents one place where some lines are deleted
  2081. X   and some are inserted.
  2082. X   
  2083. X   LINE0 and LINE1 are the first affected lines in the two files (origin 0).
  2084. X   DELETED is the number of lines deleted here from file 0.
  2085. X   INSERTED is the number of lines inserted here in file 1.
  2086. X
  2087. X   If DELETED is 0 then LINE0 is the number of the line before
  2088. X   which the insertion was done; vice versa for INSERTED and LINE1.  */
  2089. X
  2090. Xstruct change
  2091. X{
  2092. X  struct change *link;        /* Previous or next edit command  */
  2093. X  int inserted;            /* # lines of file 1 changed here.  */
  2094. X  int deleted;            /* # lines of file 0 changed here.  */
  2095. X  int line0;            /* Line number of 1st deleted line.  */
  2096. X  int line1;            /* Line number of 1st inserted line.  */
  2097. X  char ignore;            /* Flag used in context.c */
  2098. X};
  2099. X
  2100. X/* Structures that describe the input files.  */
  2101. X
  2102. X/* Data on one line of text.  */
  2103. X
  2104. Xstruct line_def {
  2105. X    char        *text;
  2106. X    int         length;
  2107. X    unsigned    hash;
  2108. X};
  2109. X
  2110. X/* Data on one input file being compared.  */
  2111. X
  2112. Xstruct file_data {
  2113. X    int             desc;    /* File descriptor  */
  2114. X    char           *name;    /* File name  */
  2115. X    struct stat     stat;    /* File status from fstat()  */
  2116. X    int             dir_p;    /* 1 if file is a directory  */
  2117. X
  2118. X    /* Buffer in which text of file is read.  */
  2119. X    char *        buffer;
  2120. X    /* Allocated size of buffer.  */
  2121. X    int            bufsize;
  2122. X    /* Number of valid characters now in the buffer. */
  2123. X    int            buffered_chars;
  2124. X
  2125. X    /* Array of data on analyzed lines of this chunk of this file.  */
  2126. X    struct line_def *linbuf;
  2127. X
  2128. X    /* Allocated size of linbuf array (# of elements).  */
  2129. X    int            linbufsize;
  2130. X
  2131. X    /* Number of elements of linbuf containing valid data. */
  2132. X    int            buffered_lines;
  2133. X
  2134. X    /* Pointer to end of prefix of this file to ignore when hashing. */
  2135. X    char *prefix_end;
  2136. X
  2137. X    /* Count of lines in the prefix. */
  2138. X    int prefix_lines;
  2139. X
  2140. X    /* Pointer to start of suffix of this file to ignore when hashing. */
  2141. X    char *suffix_begin;
  2142. X
  2143. X    /* Count of lines in the suffix. */
  2144. X    int suffix_lines;
  2145. X
  2146. X    /* Vector, indexed by line number, containing an equivalence code for
  2147. X       each line.  It is this vector that is actually compared with that
  2148. X       of another file to generate differences. */
  2149. X    int           *equivs;
  2150. X
  2151. X    /* Vector, like the previous one except that
  2152. X       the elements for discarded lines have been squeezed out.  */
  2153. X    int           *undiscarded;
  2154. X
  2155. X    /* Vector mapping virtual line numbers (not counting discarded lines)
  2156. X       to real ones (counting those lines).  Both are origin-0.  */
  2157. X    int           *realindexes;
  2158. X
  2159. X    /* Total number of nondiscarded lines. */
  2160. X    int            nondiscarded_lines;
  2161. X
  2162. X    /* Vector, indexed by real origin-0 line number,
  2163. X       containing 1 for a line that is an insertion or a deletion.
  2164. X       The results of comparison are stored here.  */
  2165. X    char       *changed_flag;
  2166. X
  2167. X    /* 1 if file ends in a line with no final newline. */
  2168. X    int            missing_newline;
  2169. X
  2170. X    /* 1 more than the maximum equivalence value used for this or its
  2171. X       sibling file. */
  2172. X    int equiv_max;
  2173. X
  2174. X    /* Table translating diff's internal line numbers 
  2175. X       to actual line numbers in the file.
  2176. X       This is needed only when some lines have been discarded.
  2177. X       The allocated size is always linbufsize
  2178. X       and the number of valid elements is buffered_lines.  */
  2179. X    int           *ltran;
  2180. X};
  2181. X
  2182. X/* Describe the two files currently being compared.  */
  2183. X
  2184. XEXTERN struct file_data files[2];
  2185. X
  2186. X/* Queue up one-line messages to be printed at the end,
  2187. X   when -l is specified.  Each message is recorded with a `struct msg'.  */
  2188. X
  2189. Xstruct msg
  2190. X{
  2191. X  struct msg *next;
  2192. X  char *format;
  2193. X  char *arg1;
  2194. X  char *arg2;
  2195. X};
  2196. X
  2197. X/* Head of the chain of queues messages.  */
  2198. X
  2199. XEXTERN struct msg *msg_chain;
  2200. X
  2201. X/* Tail of the chain of queues messages.  */
  2202. X
  2203. XEXTERN struct msg *msg_chain_end;
  2204. X
  2205. X/* Stdio stream to output diffs to.  */
  2206. X
  2207. XEXTERN FILE *outfile;
  2208. X
  2209. X/* Declare various functions.  */
  2210. X
  2211. Xvoid *xmalloc ();
  2212. Xvoid *xrealloc ();
  2213. Xvoid *xcalloc();
  2214. Xchar *concat ();
  2215. Xvoid free ();
  2216. X
  2217. Xvoid message ();
  2218. Xvoid print_message_queue ();
  2219. SHAR_EOF
  2220. echo "End of archive 4 (of 14)"
  2221. # if you want to concatenate archives, remove anything after this line
  2222. exit
  2223.